home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / FINGER16._M_ < prev    next >
Text File  |  1997-07-26  |  681b  |  31 lines

  1. #
  2. # Microsoft makefile for FINGER [Win16]
  3. #
  4. # To use: "NMAKE FINGER16._M_"
  5. #
  6.  
  7. CCFLAGS = -c -AS -G2sw -Oas -Zp
  8.  
  9. finger.exe: finger.res finger.obj finger.def wil16.lib \
  10.            about.obj async.obj paint.obj str.obj
  11.     link /NOD /NOE finger about async.obj paint str,,,libw slibcew wil16 winsock,finger.def;
  12.     rc finger.res
  13.  
  14. finger.res: finger.rc
  15.     rc -r finger.rc
  16.  
  17. about.obj: about.c about.h
  18.    cl $(CCFLAGS)  about.c
  19.  
  20. async.obj: async.c async.h
  21.    cl $(CCFLAGS)  async.c
  22.  
  23. paint.obj: paint.c paint.h wil.h
  24.     cl $(CCFLAGS)  paint.c
  25.  
  26. str.obj: str.c str.h wil.h
  27.     cl $(CCFLAGS)  str.c
  28.  
  29. finger.obj: finger.c wil.h
  30.     cl $(CCFLAGS)  finger.c
  31.